--^T+T copy table range*
--copies a table range into an other table
	-- table_A.copyRangeTo({2,2}..{3,8}, table_B, 1,1); 
	-- copies the range {2,2}..{3,8} into the target table to
	-- table position [1,1]
	-- 
	table_A.copyRangeTo({x1_y1}..{x2_y2}, table_B, x3_y3); 

/*table_A:table from where a range shall be copied
x1_y1:start position of the range| upper left corner e.g. 2,2
x2_y2:end position of the range| lower right corner e.g. 3,8
table_B:target table of the copy operation
x3_y3: table field to which the upper left corner| of the range will be copied e.g. 4,10
*/